home *** CD-ROM | disk | FTP | other *** search
/ Freelog 100 / FreelogNo100-NovembreDecembre2010.iso / Musique / solfege / solfege-win32-3.17.0.exe / {app} / README.txt < prev   
Text File  |  2010-08-20  |  9KB  |  236 lines

  1. Table of Contents
  2. *****************
  3.  
  4. 1 GNU Solfege 3.17.0
  5.   1.1 Requirements
  6.     1.1.1 MS Windows
  7.     1.1.2 GNU/Linux and the rest of us
  8.       1.1.2.1 Runtime
  9.       1.1.2.2 Build dependencies
  10.   1.2 Versioning
  11.   1.3 Internationalization
  12.   1.4 Sound issues
  13.     1.4.1 `--no-sound' command line option
  14.     1.4.2 Missing `/dev/music'
  15.   1.5 If it just won't work
  16.   1.6 History
  17.   1.7 Copyright notice
  18.  
  19.  
  20. 1 GNU Solfege 3.17.0
  21. ********************
  22.  
  23. Solfege is a free ear training program written in python using gtk+ and
  24. PyGTK.  Solfege is expected to work on any OS where python, gtk+ and
  25. pygtk are ported, but some adjustments might be necessary.
  26.  
  27. Check out the latest news and precompiled binaries at
  28. `http://www.solfege.org'. Get the source code for the stable releases
  29. at `ftp://ftp.gnu.org/gnu/solfege' and bleeding edge at
  30. `ftp://alpha.gnu.org/gnu/solfege'.
  31.  
  32.    Ear training is a big subject with many connections to music theory
  33. and performance of music, so I won't even try to make "a complete
  34. computer based ear training course". To use this software, you need some
  35. basic knowledge about music theory.
  36.  
  37.    As of 18 June 2000, Solfege is an official part of the GNU project.
  38. Visit `http://www.gnu.org' for more info.
  39.  
  40. 1.1 Requirements
  41. ================
  42.  
  43. Most of this software are usually included with your linux distro.  But
  44. sometimes you have to use a quite new and uptodate linux distribution
  45. because solfege require quite new versions of them. A good alternative
  46. can then be to try one of the older stable releases. We try to collect
  47. OS specific information on the wiki at `http://www.solfege.org/wiki'.
  48. But this depends on users contributing their data.
  49.  
  50. 1.1.1 MS Windows
  51. ----------------
  52.  
  53. MS Windows users can download the installer program
  54. (solfege-win32-3.17.0.exe) that contains everything they need.
  55.  
  56. 1.1.2 GNU/Linux and the rest of us
  57. ----------------------------------
  58.  
  59. The rest of us should check that the following is installed:
  60.  
  61. 1.1.2.1 Runtime
  62. ...............
  63.  
  64.    * Python >= 2.5
  65.  
  66.    * Gtk+ >= 2.12
  67.  
  68.    * PyGTK >= 2.12 (Debian: python-gtk2)
  69.  
  70.    * Midi working on /dev/music or /dev/sequencer (for example using
  71.      OSS or ALSA with OSS emulation). Or at least possible to play midi
  72.      files on some external program. It seems that your soundcard must
  73.      support FM-synthesis or wavetable synthesis to use /dev/music or
  74.      /dev/sequencer. If it does not, you need to do that in software,
  75.      for example using timidity. Please check
  76.      http://www.solfege.org/Solfege/SoundSetup . I try to update it
  77.      more often than this file. And everybody is allowed to edit that
  78.      page.
  79.  
  80. 1.1.2.2 Build dependencies
  81. ..........................
  82.  
  83.    * GNU Make
  84.  
  85.    * Gettext
  86.  
  87.    * Python header files. (The RedHat package is called python-devel.)
  88.  
  89.    * C compiler (only GCC is tested, nothing else is expected to work.)
  90.  
  91.    * GNU texinfo (ftp://ftp.gnu.org/gnu/texinfo)
  92.  
  93.    If you get the program fresh from the bzr repository, then you also
  94. need need:
  95.  
  96.    * swig 1.1 or 1.3 (Simplified Wrapper and Interface Generator) found
  97.      at `http://www.swig.org'.
  98.  
  99.    * GNU Lilypond 2.10 or 2.12. Newer version might work.
  100.      (`http://www.lilypond.org')
  101.  
  102.    * xsltproc and docbook
  103.  
  104.    * xml2po
  105.  
  106.    * txt2man
  107.  
  108.    If you edit `configure.ac', you need GNU Autoconf.
  109.  
  110. 1.2 Versioning
  111. ==============
  112.  
  113. Solfege uses a versioning scheme similar to the Linux kernel.  In a
  114. version "x.y.z", an even (0, 2, 4, 6, 8) second number 'y' denotes a
  115. stable version. So releases called 1.0, 1.2.2, 2.0.0 and similar should
  116. work as documented, while a release versioned 1.1.3 or 1.9.2 is a test
  117. release that is expected to cause some troubles (that should be
  118. reported to solfege-devel@lists.sourceforge.net).
  119.  
  120. 1.3 Internationalization
  121. ========================
  122.  
  123. You get translated messages the same ways as with most GNU programs, by
  124. setting environment variables. On a recent linux distribution the
  125. correct environment variables are set, and solfege will show messages
  126. in your language, if translations exist. Set the LANGAUGE environment
  127. variable to change this from the command line:
  128.  
  129.        export LANGUAGE=sv
  130.        solfege
  131.  
  132.    Please notice that if you mess with many of the LC_XXX variables,
  133. then you might see the following error message on the console:
  134.  
  135.      Traceback (most recent call last):
  136.        File "./solfege.py", line 51, in ?
  137.          src.i18n.setup(".", src.cfg.get_string("app/lc_messages"))
  138.        File "./src/i18n.py", line 63, in setup
  139.          locale.setlocale(locale.LC_ALL, '')
  140.        File "/usr/lib/python2.4/locale.py", line 381, in setlocale
  141.          return _setlocale(category, locale)
  142.      locale.Error: unsupported locale setting
  143.  
  144.    Solfege will recover from this error and run without translated
  145. messages.  It is not a bug in GNU Solfege if you see this message. Your
  146. environment variables are wrong or you have forgotten to run some
  147. locale related update command like `locale-gen' or similar. If you want
  148. to change the language by setting environment variables, you should set
  149. LANGUAGE and not LC_ALL.
  150.  
  151.    You can also select the language to use from the preferences window
  152. of the program.
  153.  
  154.    Please read `http://www.solfege.org/Solfege/TranslateSolfege' if you
  155. want to help the translation.
  156.  
  157. 1.4 Sound issues
  158. ================
  159.  
  160. You configure how Solfege should play sounds from the preferences
  161. window available from the File menu.
  162.  
  163.    Be aware that it seems like your soundcard must support FM-synthesis
  164. or wavetable synthesis to work out of the box. One card I know that
  165. does this is SoundBlaster Live. If it does not, you need to emulate
  166. this in software, for example by using timidity as an external
  167. midiplayer.  More info on `http://www.solfege.org/Solfege/SoundSetup'.
  168.  
  169. 1.4.1 `--no-sound' command line option
  170. --------------------------------------
  171.  
  172. If you plan to play sounds using an external midiplayer, or if you get
  173. other error messages that you think might be caused by your sound setup
  174. or Solfeges sound code, then you should start the program with the
  175. `--no-sound' command line option the first time you run the program,
  176. and then configure sound from the preferences window.
  177.  
  178. 1.4.2 Missing `/dev/music'
  179. --------------------------
  180.  
  181. If you have a recent linux kernel (at least late 2.2.x and newer,
  182. someone please confirm when /dev/music was added...) but `/dev/music'
  183. is missing, you can probably create the device file yourself with
  184. MAKEDEV or `mknod /dev/music u 14 8' as root.
  185.  
  186. 1.5 If it just won't work
  187. =========================
  188.  
  189. See the INSTALL file if you have problems building and installing
  190. Solfege, and check the man page or run the program with the '--help'
  191. command line option for a list of command line options.
  192.  
  193.    You are welcome to ask questions on
  194. <solfege-devel@lists.sourceforge.net> if this documentation and
  195. `http://www.solfege.org' does not give you an answer.
  196.  
  197. 1.6 History
  198. ===========
  199.  
  200. The first versions of Solfege was written in the first quarter of 1999
  201. when I studied my 4th and last year at Malm÷ Academy of Music.  I was
  202. writing a "special subject" (what is the english term??) about ear
  203. training and used GNU Lilypond and LaTeX to typeset the paper.
  204.  
  205.    I accidentally browsed the "help needed" page at the GNU web site
  206. when I saw they needed someone to write an ear training program for
  207. music students.
  208.  
  209.    In the beginning I was experimenting with wxWindows, a cross
  210. platform C++ GUI toolkit, but luckily, at some point I found the python
  211. bindings for gtk+ and have never looked back.
  212.  
  213. 1.7 Copyright notice
  214. ====================
  215.  
  216. Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Tom
  217. Cato Amundsen
  218.  
  219.    This if free software; you can redistribute it and/or modify it under
  220. the terms of the GNU General Public License as published by the Free
  221. Software Foundation; either version 2.
  222.  
  223.    This is distributed in the hope that it will be useful, but WITHOUT
  224. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  225. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  226. for more details.
  227.  
  228.    You should have received a copy of the GNU General Public License
  229. with your Debian GNU/Linux system, in /usr/doc/copyright/GPL, with the
  230. solfege source package as the file COPYING and available in the online
  231. help system..  If not, write to the Free Software Foundation, Inc., 51
  232. Franklin ST, Fifth Floor, Boston, MA  02110-1301  USA
  233.  
  234.    Tom Cato Amundsen <tca@gnu.org>
  235.  
  236.